5-E
Simple site for the info you need...
setlocal enabledelayedexpansion
for /f "tokens=*" %%a in ('iscsicli sessionlist') do (
echo %%a | find /i "Target Name" >>info.txt
echo %%a | find /i "Device Number" >>info.txt
echo Device Letter : %%a | find /i ":\" >>info.txt
)